home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 22 / Cream of the Crop 22.iso / windows / treesize.zip / Treesize.exe / 0 / RCDATA / TMAINFORM / TMAINFORM.txt < prev   
Text File  |  1996-11-11  |  5KB  |  252 lines

  1. object MainForm: TMainForm
  2.   Left = 230
  3.   Top = 112
  4.   Width = 320
  5.   Height = 393
  6.   Caption = 'TreeSize'
  7.   Font.Color = clWindowText
  8.   Font.Height = -12
  9.   Font.Name = 'MS Sans Serif'
  10.   Font.Style = []
  11.   Icon.Data = {<image000.ico>}
  12.   KeyPreview = True
  13.   Menu = MainMenu
  14.   Position = poScreenCenter
  15.   OnClose = FormClose
  16.   OnCreate = FormCreate
  17.   OnShow = FormShow
  18.   PixelsPerInch = 96
  19.   TextHeight = 13
  20.   object StatusBar: TStatusBar
  21.     Left = 0
  22.     Top = 329
  23.     Width = 312
  24.     Height = 18
  25.     Hint = 'Test'
  26.     Font.Color = clBlack
  27.     Font.Height = 11
  28.     Font.Name = 'MS Sans Serif'
  29.     Font.Style = []
  30.     Panels = <
  31.       item
  32.         Text = 'Free Space:'
  33.         Width = 120
  34.       end
  35.       item
  36.         Text = '0 Files'
  37.         Width = 85
  38.       end
  39.       item
  40.         Width = 120
  41.       end>
  42.     ParentFont = False
  43.     SimplePanel = False
  44.   end
  45.   object Progress: TProgressBar
  46.     Left = 0
  47.     Top = 311
  48.     Width = 312
  49.     Height = 18
  50.     Align = alBottom
  51.     Min = 0
  52.     Max = 100
  53.     Step = 1
  54.     TabOrder = 1
  55.     Visible = False
  56.   end
  57.   object Tree: TDCTreeView
  58.     Left = 0
  59.     Top = 0
  60.     Width = 312
  61.     Height = 311
  62.     ReadOnly = True
  63.     DragMode = dmAutomatic
  64.     Indent = 19
  65.     OnExpanding = TreeExpanding
  66.     Align = alClient
  67.     ParentColor = False
  68.     TabOrder = 2
  69.     OnMouseUp = TreeMouseUp
  70.     PopupMenu = PopupMenu
  71.     AcceptFiles = False
  72.     OnFileDrop = TreeFileDrop
  73.   end
  74.   object MainMenu: TMainMenu
  75.     Left = 159
  76.     Top = 14
  77.     object FileMenu: TMenuItem
  78.       Caption = '&File'
  79.       ShortCut = 0
  80.       object select: TMenuItem
  81.         Caption = 'Select &Directory'
  82.         ShortCut = 0
  83.         OnClick = FileOpen
  84.       end
  85.       object Update: TMenuItem
  86.         Caption = '&Update'
  87.         ShortCut = 116
  88.         OnClick = UpdateClick
  89.       end
  90.       object Print1: TMenuItem
  91.         Caption = '&Print'
  92.         ShortCut = 0
  93.         OnClick = Print1Click
  94.       end
  95.       object PrintSetup: TMenuItem
  96.         Caption = 'Print &Setup ...'
  97.         ShortCut = 0
  98.         OnClick = PrintSetupClick
  99.       end
  100.       object N2: TMenuItem
  101.         Caption = '-'
  102.         ShortCut = 0
  103.       end
  104.       object collapse: TMenuItem
  105.         Caption = 'Full &Collapse'
  106.         ShortCut = 0
  107.         OnClick = CollapseClick
  108.       end
  109.       object expand: TMenuItem
  110.         Caption = 'Full &Expand'
  111.         ShortCut = 0
  112.         OnClick = ExpandClick
  113.       end
  114.       object N1: TMenuItem
  115.         Caption = '-'
  116.         ShortCut = 0
  117.       end
  118.       object FileExitItem: TMenuItem
  119.         Caption = '&Exit'
  120.         Hint = 'Anwendung beenden'
  121.         ShortCut = 27
  122.         OnClick = FileExit
  123.       end
  124.     end
  125.     object Sort: TMenuItem
  126.       Caption = '&Sort'
  127.       ShortCut = 0
  128.       object Sort1: TMenuItem
  129.         Tag = 1
  130.         Caption = 'By &Name'
  131.         GroupIndex = 2
  132.         RadioItem = True
  133.         ShortCut = 0
  134.         OnClick = Sort1Click
  135.       end
  136.       object Sort2: TMenuItem
  137.         Tag = 2
  138.         Caption = 'By &Size'
  139.         GroupIndex = 2
  140.         RadioItem = True
  141.         ShortCut = 0
  142.         OnClick = Sort1Click
  143.       end
  144.       object Sort3: TMenuItem
  145.         Tag = 3
  146.         Caption = 'N&one'
  147.         GroupIndex = 2
  148.         RadioItem = True
  149.         ShortCut = 0
  150.         OnClick = Sort1Click
  151.       end
  152.     end
  153.     object View: TMenuItem
  154.       Caption = '&View'
  155.       GroupIndex = 1
  156.       RadioItem = True
  157.       ShortCut = 0
  158.       object View1: TMenuItem
  159.         Tag = 1
  160.         Caption = '&Bytes'
  161.         GroupIndex = 1
  162.         RadioItem = True
  163.         ShortCut = 0
  164.         OnClick = View1Click
  165.       end
  166.       object View2: TMenuItem
  167.         Tag = 2
  168.         Caption = 'Bytes &Alllocated'
  169.         GroupIndex = 1
  170.         Hint = 'Space occupied on disk'
  171.         RadioItem = True
  172.         ShortCut = 0
  173.         OnClick = View1Click
  174.       end
  175.       object View3: TMenuItem
  176.         Tag = 3
  177.         Caption = '&Percent'
  178.         GroupIndex = 1
  179.         RadioItem = True
  180.         ShortCut = 0
  181.         OnClick = View1Click
  182.       end
  183.       object View4: TMenuItem
  184.         Tag = 4
  185.         Caption = '&Wasted Space'
  186.         GroupIndex = 1
  187.         RadioItem = True
  188.         ShortCut = 0
  189.         OnClick = View1Click
  190.       end
  191.       object View5: TMenuItem
  192.         Tag = 5
  193.         Caption = 'Use &CD-Rom Cluster Size'
  194.         GroupIndex = 1
  195.         RadioItem = True
  196.         ShortCut = 0
  197.         OnClick = View1Click
  198.       end
  199.       object N3: TMenuItem
  200.         Caption = '-'
  201.         GroupIndex = 2
  202.         ShortCut = 0
  203.       end
  204.       object User: TMenuItem
  205.         Tag = 5
  206.         Caption = '&User Defined Cluster Size'
  207.         GroupIndex = 2
  208.         ShortCut = 0
  209.         OnClick = UserClick
  210.       end
  211.       object Mixed: TMenuItem
  212.         Caption = 'KB/MB &Mixed'
  213.         Checked = True
  214.         GroupIndex = 2
  215.         ShortCut = 0
  216.         OnClick = MixedClick
  217.       end
  218.     end
  219.     object Help: TMenuItem
  220.       Caption = '&Help'
  221.       GroupIndex = 1
  222.       ShortCut = 0
  223.       object AboutItem: TMenuItem
  224.         Caption = 'Inf&o...'
  225.         ShortCut = 0
  226.         OnClick = About
  227.       end
  228.     end
  229.   end
  230.   object PopupMenu: TPopupMenu
  231.     AutoPopup = False
  232.     Left = 72
  233.     Top = 16
  234.     object open: TMenuItem
  235.       Tag = 1
  236.       Caption = '&Open'
  237.       ShortCut = 0
  238.       OnClick = openClick
  239.     end
  240.     object explore: TMenuItem
  241.       Tag = 2
  242.       Caption = '&Explore'
  243.       ShortCut = 0
  244.       OnClick = openClick
  245.     end
  246.   end
  247.   object PrinterSetupDialog1: TPrinterSetupDialog
  248.     Left = 24
  249.     Top = 16
  250.   end
  251. end
  252.